home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
rdblib
/
logo.frm
< prev
next >
Wrap
Text File
|
1995-05-08
|
5KB
|
169 lines
VERSION 2.00
Begin Form LogoForm
BackColor = &H00808080&
Caption = "RDB Common Subroutine & Function Library"
ClientHeight = 5505
ClientLeft = 1095
ClientTop = 1380
ClientWidth = 7440
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Futura Md BT"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 5910
Icon = LOGO.FRX:0000
Left = 1035
LinkMode = 1 'Source
LinkTopic = "Form1"
ScaleHeight = 5505
ScaleWidth = 7440
Top = 1035
Width = 7560
Begin CommandButton OKBtn
Caption = "OK"
Height = 615
Left = 240
TabIndex = 4
Top = 2400
Visible = 0 'False
Width = 735
End
Begin PictureBox Picture1
AutoSize = -1 'True
BackColor = &H00808080&
BorderStyle = 0 'None
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Futura Md BT"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 3600
Left = 1320
Picture = LOGO.FRX:0302
ScaleHeight = 3600
ScaleWidth = 5040
TabIndex = 0
Top = 1440
Width = 5040
End
Begin Timer Timer1
Left = 360
Top = 1200
End
Begin Label Label1
Alignment = 2 'Center
AutoSize = -1 'True
BackColor = &H00808080&
Caption = "Brought To You By"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Futura Md BT"
FontSize = 12
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00FF0000&
Height = 270
Index = 0
Left = 2520
TabIndex = 2
Top = 1080
Width = 2190
End
Begin Label Version
Alignment = 2 'Center
BackColor = &H00808080&
Caption = "Version "
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Futura Md BT"
FontSize = 13.5
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00FF0000&
Height = 255
Left = 2760
TabIndex = 3
Top = 720
Width = 1695
End
Begin Label TBLabel
Alignment = 2 'Center
AutoSize = -1 'True
BackColor = &H00808080&
Caption = "Common Subroutine && Function Library"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Futura Md BT"
FontSize = 19.5
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00FF0000&
Height = 450
Left = 180
TabIndex = 1
Top = 120
Width = 7050
End
End
Sub Form_Load ()
On Error GoTo formerror1
mousepointer = HOURGLASS
Version.Caption = "Version " & rb_version
timer1.Interval = 1000
SndPlaySound "drum.wav", 2
SndPlaySound "tada.wav", 2
On Error Resume Next
OkBtn.Visible = True
Exit Sub
formerror1:
erraction = RB_ErrorHandler("LogoForm", "Form_Load")
Select Case erraction
Case 1
Resume 0
Case 2
Resume Next
End Select
End Sub
Sub OKBtn_Click ()
mousepointer = DEFAULT
Unload LogoForm
End Sub
Sub Timer1_Timer ()
On Error GoTo Timer1error1
SndPlaySound "rdblib.wav", 2
junk% = DoEvents()
SndPlaySound "broghtby.wav", 2
junk% = DoEvents()
SndPlaySound "rdbsystm.wav", 2
timer1.Enabled = False
mousepointer = DEFAULT
Exit Sub
Timer1error1:
erraction = RB_ErrorHandler("LogoForm", "Timer1_Timer")
Select Case erraction
Case 1
Resume 0
Case 2
Resume Next
End Select
End Sub